home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-02-21 | 306 b | 15 lines | [TEXT/RLAB] |
- //-------------------------------------------------------------------//
-
- // Syntax: sinh ( X )
-
- // Description:
-
- // Sinh is the hyperbolic sine of the element(s) of X.
-
- //-------------------------------------------------------------------//
-
- sinh = function ( x )
- {
- return (exp (x) - exp (-x))/2;
- };
-